home *** CD-ROM | disk | FTP | other *** search
- /* Fast lookup table abstraction implemented as a Guilmette Array
- Copyright (C) 1989 Free Software Foundation, Inc.
- written by Douglas C. Schmidt (schmidt@ics.uci.edu)
-
- This file is part of GNU GPERF.
-
- GNU GPERF is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 1, or (at your option)
- any later version.
-
- GNU GPERF is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with GNU GPERF; see the file COPYING. If not, write to
- the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-
- #include "options.h"
- #include "xmalloc.h"
- #include "boolarray.h"
-
- /* Locally visible BOOL_ARRAY object. */
-
- static BOOL_ARRAY bool_array;
-
-
- /***********************************************************************\
- * *
- * name: bool_array_destroy *
- * *
- * descr: Print out debugging diagnostics. *
- * *
- \***********************************************************************/
-
- void bool_array_destroy()
- {
- if ( OPTION_ENABLED( option, DEBUG ) )
- fprintf( stderr, "\ndumping boolean array information\n"
- "size = %d\nend of array dump\n", bool_array.size );
- free( bool_array.storage_array );
- }
-
-
- /***********************************************************************\
- * *
- * name: bool_array_init *
- * *
- * descr: Initialize bool array. *
- * *
- \***********************************************************************/
-
- void bool_array_init( int size )
- {
- bool_array.iteration_number = 1;
- bool_array.size = size;
- bool_array.storage_array = (int *)xmalloc( size * sizeof(*bool_array.storage_array) );
-
- memset( bool_array.storage_array, 0, size * sizeof(*bool_array.storage_array) );
- }
-
- /***********************************************************************\
- * *
- * name: lookup *
- * *
- * descr: Look up index in bool array. *
- * *
- \***********************************************************************/
-
- bool lookup( int index )
- {
- if ( bool_array.storage_array[index] == bool_array.iteration_number )
- return 1;
- else
- {
- bool_array.storage_array[index] = bool_array.iteration_number;
- return 0;
- }
- }
-
- /***********************************************************************\
- * *
- * name: bool_array_reset *
- * *
- * descr: Reset boolarray. *
- * *
- \***********************************************************************/
-
-
- void bool_array_reset()
- {
- /* If we wrap around it's time to zero things out again!
- However, this only occurs once about every 2^31 iterations,
- so it should probably never happen! */
-
- if ( bool_array.iteration_number++ == 0 )
- memset( bool_array.storage_array, 0, bool_array.size * sizeof(*bool_array.storage_array) );
- }
-